home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
graphics
/
gfx_card
/
egssys7.1update
/
egsclusterinc.lha
/
GBSelect.mod
< prev
next >
Wrap
Text File
|
1994-12-13
|
615b
|
27 lines
|##########|
|#MAGIC #|DBGFFBLI
|#PROJECT #|""
|#PATHS #|"EGSProject"
|#FLAGS #|-x---x--x-----x-----------------
|#USERSW #|--------------------------------
|#USERMASK#|--------------------------------
|#SWITCHES#|x--x-x----------
|##########|
(* $V- $R- $S- $N- *)
IMPLEMENTATION MODULE GBSelect;
FROM Exec IMPORT OpenLibrary,CloseLibrary;
FROM Exceptions IMPORT CouldNotOpenLibrary;
BEGIN
GBSelectBase:=OpenLibrary("egb/gbselect.library",0);
ASSERT(GBSelectBase#NIL,CouldNotOpenLibrary);
CLOSE
IF GBSelectBase#NIL THEN
CloseLibrary(GBSelectBase);GBSelectBase:=NIL
END;
END GBSelect.